home *** CD-ROM | disk | FTP | other *** search
- /********************************************************************
- *
- * File: debug.c
- * Description: Debugging macros
- * Author: Ole Martin Bjørndalen (olemb@stud.cs.uit.no)
- * Version: 1.1a
- * Status: Public domain
- * Last changed: 27 Sep 1997
- *
- ********************************************************************/
-
- #ifndef DEBUG_H
- #define DEBUG_H
-
- #ifdef DEBUG
-
- #define D(x) x
- #define bug Printf("* ");Printf
-
- #else
-
- #define D(x)
- #define bug
-
- #endif
-
- #endif /* DEBUG_H */
-